home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 59 / Cine Live 59.iso / pc / Scripts / ToolsModel.k < prev    next >
Encoding:
Text File  |  1999-06-03  |  4.7 KB  |  163 lines

  1. module oModelPlugin is cPlugin
  2. has
  3.     release Editor:
  4.         GetIO()
  5.             do
  6.                 result := oIOModelPlugin;
  7.             end;
  8.     end;
  9. end;
  10.  
  11. release Editor:
  12.  
  13. object oIOModelLabel is "Model";
  14.  
  15. object oIOModelPlugin is cIOPlugin
  16. with
  17.     AboutDialog is cUIAboutPluginDialog
  18.     with
  19.         HelpURL is "Model/index.htm";
  20.         Label is oIOModelLabel;
  21.         Text is "Box, Scroller, Document, Image, Movie, Panorama and Sound elements, events and commands.";
  22.     end;
  23.     ToolLines is [
  24.         cIOToolListLine 
  25.         with 
  26.             Expanded is true;
  27.             Label is oIOModelLabel;
  28.             Lines is [
  29.                 cIOToolLine
  30.                 with
  31.                     Words is [
  32.                         oBoxCreator,
  33.                         oScrollerCreator
  34.                     ];
  35.                 end,
  36.                 cIOToolLine
  37.                 with
  38.                     Words is [
  39.                         oRectangleRegionEditor,
  40.                         oOvalRegionEditor,
  41.                         oPolygonRegionEditor,
  42.                         oLassoRegionEditor,
  43.                         oSeedRegionEditor,
  44.                         oFilterRegionEditor
  45.                     ];
  46.                 end
  47.             ];
  48.         end
  49.     ];
  50.     ElementLines is [
  51.         cIOSeedListLine 
  52.         with 
  53.             Label is oIOModelLabel;
  54.             Lines is [
  55.                 cIOSeedLine with IO is oIOBox; end,
  56.                 cIOSeedLine with IO is oIOScroller; end,
  57.                 cIOSeedLine with IO is oIODocument; end,
  58.                 cIOSeedLine with IO is oIOImage; end,
  59.                 cIOSeedLine with IO is oIOMovie; end,
  60.                 cIOSeedLine with IO is oIOSound; end,
  61.                 cIOSeedLine with IO is oIOPanorama; end
  62.             ];
  63.         end
  64.     ];
  65.     EventLines is [
  66.         cIOSeedListLine 
  67.         with 
  68.             Label is oIOModelLabel;
  69.             Lines is [
  70.                 cIOSeedLine with IO is oIOLoadedEvent; end,
  71.                 cIOSeedLine with IO is oIONotLoadedEvent; end,
  72.                 cIOSeedLine with IO is oIOOffscreenEvent; end,
  73.                 cIOSeedLine with IO is oIOOnscreenEvent; end,
  74.                 cIOSeedLine with IO is oIOTokenEvent; end,
  75.                 cIOSeedLine with IO is oIOMouseEnterEvent; end,
  76.                 cIOSeedLine with IO is oIOMouseLeaveEvent; end,
  77.                 cIOSeedLine with IO is oIOMouseDownEvent; end,
  78.                 cIOSeedLine with IO is oIOMouseIdleEvent; end,
  79.                 cIOSeedLine with IO is oIOMouseMovedEvent; end,
  80.                 cIOSeedLine with IO is oIOMouseUpEvent; end,
  81.                 cIOSeedLine with IO is oIOTimeEvent; end,
  82.                 cIOSeedLine with IO is oIOFinishedEvent; end,
  83.                 cIOSeedLine with IO is oIOFocusedEvent; end,
  84.                 cIOSeedLine with IO is oIOKeyboardEvent; end,
  85.                 cIOSeedLine with IO is oIOWireEvent; end,
  86.                 cIOSeedLine with IO is oIOHotPanoramaEvent; end
  87.             ];
  88.         end
  89.     ];
  90.     CommandLines is [
  91.         cIOSeedListLine 
  92.         with 
  93.             Label is oIOModelLabel;
  94.             Lines is [
  95.                 cIOSeedLine with IO is oIODragCommand; end,
  96.                 cIOSeedLine with IO is oIOEnableCommand; end,
  97.                 cIOSeedLine with IO is oIOFocusCommand; end,
  98.                 cIOSeedLine with IO is oIOGrowCommand; end,
  99.                 cIOSeedLine with IO is oIOOrderCommand; end,
  100.                 cIOSeedLine with IO is oIORunCommand; end,
  101.                 cIOSeedLine with IO is oIOScrollCommand; end,
  102.                 cIOSeedLine with IO is oIOSetBoxCommand; end,
  103.                 cIOSeedLine with IO is oIOSetElementCursorCommand; end,
  104.                 cIOSeedLine with IO is oIOSetFlipbookCommand; end,
  105.                 cIOSeedLine with IO is oIOSetPanoramaCommand; end,
  106.                 cIOSeedLine with IO is oIOSetRateCommand; end,
  107.                 cIOSeedLine with IO is oIOSetTimeCommand; end,
  108.                 cIOSeedLine with IO is oIOShowCommand; end,
  109.                 cIOSeedLine with IO is oIOSwitchURLCommand; end
  110.             ];
  111.         end,
  112.         cIOSeedListLine 
  113.         with 
  114.             Label is "Runtime";
  115.             Lines is [
  116.                 cIOSeedLine with IO is oIOBackCommand; end,
  117.                 cIOSeedLine with IO is oIOBrowseCommand; end,
  118.                 cIOSeedLine with IO is oIOQuickTimeEffectCommand; end,
  119.                 cIOSeedLine with IO is oIOSimpleEffectCommand; end,
  120.                 cIOSeedLine with IO is oIOLaunchCommand; end,
  121.                 cIOSeedLine with IO is oIOPageSetupCommand; end,
  122.                 cIOSeedLine with IO is oIOPrintCommand; end,
  123.                 cIOSeedLine with IO is oIOQuitCommand; end,
  124.                 cIOSeedLine with IO is oIORefreshCommand; end,
  125.                 cIOSeedLine with IO is oIOScreenSaverCommand; end,
  126.                 cIOSeedLine with IO is oIOSetRuntimeCursorsCommand; end,
  127.                 cIOSeedLine with IO is oIOSetVolumeCommand; end
  128.             ];
  129.         end,
  130.         cIOSeedListLine 
  131.         with 
  132.             Label is "Special";
  133.             Lines is [
  134.                 cIOSeedLine with IO is oIODisplayCommand; end,
  135.                 cIOSeedLine with IO is oIOMouseCommand; end,
  136.                 cIOSeedLine with IO is oIOTokenCommand; end,
  137.                 cIOSeedLine with IO is oIOPutTweenerCommand; end,
  138.                 cIOSeedLine with IO is oIORemoveTweenerCommand; end,
  139.                 cIOSeedLine with IO is oIODoCookieCommand; end,
  140.                 cIOSeedLine with IO is oIOIfCookieCommand; end,
  141.                 cIOSeedLine with IO is oIOElseIfCookieCommand; end,
  142.                 cIOSeedLine with IO is oIOElseCookieCommand; end,
  143.                 cIOSeedLine with IO is oIOReadWriteCookiesCommand; end
  144.             ];
  145.         end
  146.     ];
  147.     Openers is [
  148.         oDocumentOpener,
  149.         oImageOpener,
  150.         oMovieOpener,
  151.         oSoundOpener,
  152.         oPanoramaOpener
  153.     ];
  154.     Root is cBox
  155.     with
  156.         Name is "Root";
  157.         Width is 640; Height is 480;
  158.         Enabled is false;
  159.     end;
  160. end;
  161.  
  162. end; -- release Editor
  163.